home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 18022 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.1 KB

  1. Path: kuhub.cc.ukans.edu!anh
  2. From: anh@kuhub.cc.ukans.edu (TRAN PHAN ANH)
  3. Newsgroups: comp.lang.c,comp.lang.c++
  4. Subject: Re: [Q] Any utility to attack misuse of comment /* */
  5. Message-ID: <1996Apr18.100923.118060@kuhub.cc.ukans.edu>
  6. Date: 18 Apr 96 10:09:23 CDT
  7. References: <4l32et$bhm@sun.rhbnc.ac.uk>
  8. Organization: University of Kansas Academic Computing Services
  9.  
  10.  
  11. A side not to comment out blocks of code with comments.
  12.  
  13. I tend to use this quickie approach...
  14.  
  15. #ifdef fsfsfsf
  16. ...
  17. #endif 
  18.  
  19.  
  20. Anh
  21.  
  22.  
  23. In article <4l32et$bhm@sun.rhbnc.ac.uk>, Jim Hu <jim@gl.rhbnc.ac.uk> writes:
  24. > Ho, there,
  25. >     I found out gcc and C provided by SGI for irix fail
  26. > to find out bug like this
  27. > /*
  28. >      statements;
  29. > /*
  30. >    comments
  31. > */
  32. >      other_statements;
  33. >     As you can, */ is missed out in the first case, the compilers
  34. > failed to find out this obvious error. Is there any free utility to
  35. > attack this bug. This bug can easily appear when you comment/uncomment
  36. > frequently.
  37. >     Please help via email or send me a copy if reply here.
  38. > Jim
  39. >     My question is, is there any free utility available to attack
  40.